Workshop Dataset

Project data

For the workshop, we will be using a greatly reduced dataset from the Wetland Intervention Monitoring Projects (WIMP; thanks Kay Morris 👏).

Each day we will provide a Rstudio project that will have the data as well. If you want to start from scratch, click on link below to download project data files and go from there.


Project overview

Show code
  sf_site <- sf::read_sf('data/sf_site.gpkg')
  sf_cma <- VicmapR::vicmap_query(layer='open-data-platform:cma100') %>% collect()

Purpose

Goal: Improve grazing management

Question: How does grazing intensity affect wetland plants?

Framework: The ecological framework underpinning this study is the Intermediate Disturbance Hypothesis.


Experimental design

Show code
  n_wetlands <- n_distinct(sf_site$wetland)
  n_crash <- sum(sf_site$grazing=='Crash')
  n_graze <- sum(sf_site$grazing=='Crash')

Study sites

Across western and eastern Victoria, a total of 28 sites were selected to be surveyed. These sites were spread across four Catchment Management Authorities (CMA) but with the majority of sites in the western CMAs. Sites were chosen partly to cover a wide variation in grazing intensity.

Show code
  #sf_cma <- VicmapR::vicmap_query(layer='open-data-platform:cma100') %>% collect()
  #sf::write_sf(sf_cma, 'sf_cma.gpkg')
  mapview::mapview(sf_cma, zcol='cmaname', layer.name='cma') + 
    mapview::mapview(sf_site, zcol='grazing', layer.name='site', col.regions=c('red','blue') )

Monitoring

In each wetland, we are assessing how vegetation changes over time inside two trial plots. Each trial plot is about 0.25 ha in size. One plot is open to the grazing management being applied in the wetland and the other plot is fenced to exclude livestock (sheep and cattle). Monitoring is done when the wetland is drying out but still wet as this is the when most wetland plants are present. Monitoring is done along transects and quadrats in each plot before fencing, and then every year after fencing for 3-5 years.

Design variables

So, we have a hierarchical experimental design: site/plot/transect/quadrant. Treatments are at two levels. First, we have grazing intensity: crash (intense grazing) or press (less intense). This is at the site level. Next, we have a paired design within a site with fence.

A large suite of responses were measured in this study. All For the workshop we will focus on two response metrics measured at the quadrat level:

Data provided

Overview

We have three files:

Let’s take a look at

Workshop 2024 data.xls

This workbook has four tabs of data.

site_info tab

spp_traits tab

quad_ht tab

spp_rich tab

df_quad_spp.csv

df_survey_info.csv